home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 014 / hexdump.arc / HD.TXT < prev    next >
Encoding:
Text File  |  1986-11-26  |  1.3 KB  |  43 lines

  1.                                                 HD.EXE
  2.  
  3. hexidecimal dump utility                        Class: Unix
  4.  
  5. NAME
  6.     HD                              Hexidecimal data dump
  7.  
  8. SYNOPSIS
  9.     hd [-vg08crtdox[bwl]] [<file/->] [<offset>]
  10.  
  11. DESCRIPTION
  12.     This routine permits viewing a file in either hexidecimal, decimal or
  13.     octal raw form. If a file is not specified the stdin is used. This
  14.     permits HD to be inserted in a pipeline from another program.
  15.     The output may be either byte, word, long int or char oriented.
  16.  
  17. FLAGS
  18.     -v      verbose: show names for communication characters (eg Ctrl F = ack)
  19.     -g      graphic: show actual graphic characters
  20.     -0      list offset in decimal
  21.     -8      list offset in octal    (default is hexidecimal)
  22.  
  23.     -c      bytes in ascii (where possible) must be set for -v or -g
  24.     -r      show repeated regions   (defaults to reducing repeats to '*')
  25.     -t      open in translate mode
  26.  
  27.     -d      decimal data
  28.     -o      octal data
  29.     -x      hexidecmal data         (default)
  30.  
  31.      b      byte mode
  32.      w      word mode
  33.      l      long int mode
  34.  
  35. EXAMPLE
  36.     od -cr0xb   file.txt
  37.  
  38.     shows "file" with characterd and hexideciaml bytes. Repeats shown.
  39.     Offsets numbered in decimal.
  40.     
  41.  
  42.  
  43.